home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / float / spa_log.a < prev    next >
Encoding:
Text File  |  1994-02-01  |  346 b   |  24 lines

  1.  
  2.         ;   FLOG.A
  3.         ;
  4.         ;   D0 = flog(D0)
  5.         ;          4(sp)
  6.         ;
  7.         ;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  8.  
  9.         section text,code
  10.  
  11.         xref    _MathIeeeSingTransBase
  12.         xref    _LVOIEEESPLog
  13.         xdef    __splog
  14.  
  15. __splog     move.l    4(sp),D0
  16.         move.l    A6,-(sp)
  17.         move.l    _MathIeeeSingTransBase(A4),A6
  18.         jsr    _LVOIEEESPLog(A6)
  19.         move.l    (sp)+,A6
  20.         rts
  21.  
  22.         END
  23.  
  24.